home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 July: Mac OS SDK / Dev.CD Jul 00 SDK2.toast / Development Kits / Cross Platform / QuickTime 4.1.2 Windows SDK / CIncludes / Unicode.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-04-12  |  1.0 KB  |  68 lines  |  [TEXT/R*ch]

  1. /*
  2.      File:        Unicode.h
  3.  
  4.      Contains:    Types, constants, and prototypes for Unicode Converter
  5.  
  6.      Version:    Technology:    Mac OS 8 (Tempo)
  7.                  Release:    QuickTime 4.1
  8.  
  9.      Copyright:    (c) 1994-1999 by Apple Computer, Inc., all rights reserved.
  10.  
  11.      Bugs?:        For bug reports, consult the following page on
  12.                  the World Wide Web:
  13.  
  14.                      http://developer.apple.com/bugreporter/
  15.  
  16. */
  17. #ifndef __UNICODE__
  18. #define __UNICODE__
  19.  
  20. #ifndef __UNICODECONVERTER__
  21.     #include <UnicodeConverter.h>
  22. #endif
  23.  
  24.  
  25.  
  26.  
  27. #if PRAGMA_ONCE
  28. #pragma once
  29. #endif
  30.  
  31. #ifdef __cplusplus
  32. extern "C" {
  33. #endif
  34.  
  35. #if PRAGMA_IMPORT
  36. #pragma import on
  37. #endif
  38.  
  39. #if PRAGMA_STRUCT_ALIGN
  40.     #pragma options align=mac68k
  41. #elif PRAGMA_STRUCT_PACKPUSH
  42.     #pragma pack(push, 2)
  43. #elif PRAGMA_STRUCT_PACK
  44.     #pragma pack(2)
  45. #endif
  46.  
  47.  
  48. #if PRAGMA_STRUCT_ALIGN
  49.     #pragma options align=reset
  50. #elif PRAGMA_STRUCT_PACKPUSH
  51.     #pragma pack(pop)
  52. #elif PRAGMA_STRUCT_PACK
  53.     #pragma pack()
  54. #endif
  55.  
  56. #ifdef PRAGMA_IMPORT_OFF
  57. #pragma import off
  58. #elif PRAGMA_IMPORT
  59. #pragma import reset
  60. #endif
  61.  
  62. #ifdef __cplusplus
  63. }
  64. #endif
  65.  
  66. #endif /* __UNICODE__ */
  67.  
  68.